home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_222 / plplot / src / source.zoo / plerrx.c < prev    next >
C/C++ Source or Header  |  1989-05-15  |  332b  |  16 lines

  1. /* Plots horizontal error bars (xmin(i),y(i)) to (xmax(i),y(i)) */
  2.  
  3. #include "plplot.h"
  4.  
  5. void plerrx(n,xmin,xmax,y)
  6. int n;
  7. float xmin[], xmax[], y[];
  8. {
  9.       int i, level;
  10.  
  11.       glev(&level);
  12.       if (level < 3) fatal("Please set up window before calling PLERRX.");
  13.       for (i=0;i<n;i++)
  14.         plerx1(xmin[i],xmax[i],y[i]);
  15. }
  16.